home *** CD-ROM | disk | FTP | other *** search
/ 130 MIDI Tool Box / 130 MIDI Tool Box.iso / mqupdate / midi.mbt < prev    next >
Text File  |  1990-08-08  |  1KB  |  20 lines

  1. ;=============================================================================
  2. ; This example illustrates some general MIDI uses of MIDI Batch
  3. ;
  4. ; (c) Copyright 1989 by DMA Software
  5. ; All rights reserved
  6. ;=============================================================================
  7. noteon 0 48 64                          ;On ch 1, turn on note 48 at vel 64
  8. delay 1500                              ;Wait about 1.5 sec
  9. pitchbend 0 0x1000                      ;Pitch bend down half way
  10. delay 1500                              ;Wait about 1.5 sec
  11. pitchbend 0 0x2000                      ;Return pitch bend to center
  12. delay 1500                              ;Wait about 1.5 sec
  13. noteoff 0 48 64                         ;turn off note 48
  14. delay 500                               ;Wait about .5 sec
  15. noteon 0 59 64                          ;On ch 1, turn on note 59 at vel 64
  16. controlchange 0 64 127                  ;On ch 1, turn on sustain controller
  17. noteoff 0 59 64                         ;Turn off note 59
  18. delay 1500                              ;Wait about 1.5 sec
  19. controlchange 0 64 0                    ;Turn off sustain controller
  20.